home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / snip1292.zip / TESTCMT.C < prev    next >
C/C++ Source or Header  |  1992-12-26  |  332b  |  17 lines

  1. /* testcmt.c - test getcmt.exe - C comment 1 */
  2. int i;
  3. main()
  4. {
  5.     int j;
  6.     /* C comment 2 */
  7.     int k;
  8.     /* C comment 3 */
  9.     char ch2;    /* C comment 4 */  char ch3;   // C++ comment 1
  10.     // C++ comment 2
  11.     char ch4;
  12.     // C++ comment 3
  13.     i = 0;
  14.     return(i);
  15. }
  16. /* end of testcmt.c - C comment 5 */
  17.